home *** CD-ROM | disk | FTP | other *** search
/ World of Sound / World of Sound.iso / utils / modplayers / tracker / defs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-17  |  680 b   |  35 lines

  1. /* defs.h */
  2.  
  3. /* $Id: defs.h,v 3.4 1993/11/17 15:31:16 espie Exp espie $ 
  4.  * $Log: defs.h,v $
  5.  * Revision 3.4  1993/11/17  15:31:16  espie
  6.  * *** empty log message ***
  7.  *
  8.  * Revision 3.3  1993/11/11  20:00:03  espie
  9.  * Amiga support.
  10.  *
  11.  * Revision 3.1  1992/11/19  20:44:47  espie
  12.  * Protracker commands.
  13.  *
  14.  * Revision 3.0  1992/11/18  16:08:05  espie
  15.  * New release.
  16.  */
  17.  
  18. #define LOCAL static
  19. /* X is too short */
  20. #define XT extern
  21.  
  22. #ifndef TRUE
  23. #define TRUE 1
  24. #define FALSE 0
  25. #endif
  26.  
  27. /* needed for the amiga include files */
  28. typedef short BOOL;
  29.  
  30. #define MIN(A,B) ((A)<(B) ? (A) : (B))
  31. #define MAX(A,B) ((A)>(B) ? (A) : (B))
  32.      
  33. #define D fprintf(stderr, "%d\n", __LINE__);
  34.  
  35.